home *** CD-ROM | disk | FTP | other *** search
/ Exploring Where & Why / Exploring Where & Why.iso / pc / Lib.cst / 00095_MatchGroupListMgmt.ls < prev    next >
Encoding:
Text File  |  2004-07-11  |  5.7 KB  |  220 lines

  1. --
  2. -- MatchListMgmt
  3. --
  4.  
  5. property ancestor
  6.  
  7. property spriteList  -- the appList contains general information needed to run the application.
  8. property memberList  -- property list of castLibs containing a list of available member nums.
  9.  
  10. -- the following are all constants:
  11. property appDataMember  -- the member (name) that contains the appList
  12.  
  13.  
  14. on new me
  15.   -- set constants:
  16.   set appDataMember = "ActivityPredefines"  -- currently we are using the name of the storage field.
  17.   
  18.   
  19.   set ancestor = new (script "ActivityLib")
  20.   
  21.   -- if we are a projector or protected movie then simply get the data from the appDataMember,
  22.   -- otherwise initialize empty lists.
  23.   divideLists (me, 0)
  24.   
  25.   return me
  26. end
  27.  
  28.  
  29. on destruct me
  30.   if objectP (ancestor) then destruct (ancestor)
  31.   set ancestor = 0
  32. end
  33.  
  34.  
  35. -- divide up the master list into easily accessable parts
  36. -- the master list must be formatted correctly.
  37.  
  38. on divideLists me, lst
  39.   if lst = 0 then
  40.     set spriteList = [:]
  41.     set memberList = [:]
  42.   else
  43.     set spriteList = getProp (lst, #sprites)
  44.     set memberList = getProp (lst, #members)
  45.   end if
  46. end
  47.  
  48.  
  49. -- set the starting appList manually:
  50.  
  51. on setList me, lst
  52.   makeField (me, appDataMember, lst)
  53.   divideLists (me, lst)
  54. end
  55.  
  56.  
  57.  
  58. -- runtime initialization of the game  spriteList:
  59. -- by this point spriteList will have been initialized.
  60. -- each item in the prop list will be as follows:
  61.  
  62. -- spriteNum:[#coverNum:the memberNum of sprite spr, #coverLib: the castLibNum of sprite spr, #loc:(the loc of sprite spr), #identifier:#empty, #myNum:0, #myLib:answerCast1, #matchSprite:0, #matchSprite2:0, #showflag:0 ]
  63.  
  64. on initializeRound me
  65.   divideLists (me, value (field appDataMember))
  66.   set mem1 = getPropAt (memberList, 1)
  67.   set memLst1 = getProp (memberList, mem1)  -- this is returning a pointer!!!!
  68.   set mem2 = getPropAt (memberList, 2)
  69.   set memLst2 = getProp (memberList, mem2)
  70.   --  set mem3 = getPropAt (memberList, 3)
  71.   --  set memLst3 = getProp (memberList, mem3)
  72.   
  73.   set listPool = spriteList
  74.   set spriteList = [:]
  75.   repeat while count (listPool)
  76.     
  77.     -- get a random record from the listPool:
  78.     set poolRecNum = random (count (listPool))
  79.     -- hold that record's information:
  80.     set spr = getPropAt (listPool, poolRecNum)
  81.     set lst = getProp (listPool, spr)
  82.     -- delete that record from the listPool:
  83.     deleteProp (listPool, spr)    
  84.     
  85.     -- get another random record from the listPool:
  86.     set poolRecNum2 = random (count (listPool))
  87.     -- hold that record's information:
  88.     set spr2 = getPropAt (listPool, poolRecNum2)
  89.     set lst2 = getProp (listPool, spr2)
  90.     -- delete that record from the listPool:
  91.     deleteProp (listPool, spr2)
  92.     
  93.     
  94.     -- initialize properties - using only members that have identical names:
  95.     
  96.     -- get a random member for the first list:
  97.     set num = random (count (memLst1))
  98.     -- store that member's name identifier and number in the spriteList:
  99.     set id = getPropAt (memLst1, num)
  100.     setAProp (lst, #identifier, id)
  101.     setAProp (lst, #myNum, getProp (memLst1, id))
  102.     setAProp (lst, #myLib, mem1)
  103.     
  104.     -- set props for the second sprite record:
  105.     setAProp (lst2, #identifier, id)
  106.     setAProp (lst2, #myNum, getProp (memLst2, id))
  107.     setAProp (lst2, #myLib, mem2)
  108.     
  109.     -- assign the matching sprites:
  110.     setAProp (lst, #matchSprite, spr2)
  111.     setAProp (lst2, #matchSprite, spr)
  112.     
  113.     -- delete the used member from the initializing memLst
  114.     set testNum = 1
  115.     repeat while (testNum <= count(memLst1) )
  116.       if getPropAt(memLst1, testNum) = id then
  117.         deleteProp(memLst1, id)
  118.       else
  119.         set testNum = testNum + 1
  120.       end if
  121.     end repeat
  122.     
  123.     -- put our sprite records back into the master list:
  124.     setaProp (spriteList, spr, lst)
  125.     setaProp (spriteList, spr2, lst2)
  126.   end repeat
  127. end
  128.  
  129.  
  130.  
  131. -- puppet all used sprites to TRUE
  132. -- assign each sprite its personal cover member
  133.  
  134. on hideAnswerCards me
  135.   repeat with i = 1 to count (spriteList)
  136.     set spr = getPropAt (spriteList, i)
  137.     hideAnswerCard (me, spr)
  138.   end repeat
  139.   unloadCast (me)
  140.   
  141.   repeat with lst in spritelist
  142.     preLoadMember member getProp (lst, #myNum) of castLib getProp (lst, #myLib)
  143.   end repeat
  144. end
  145.  
  146.  
  147. -- hide an answer card by sprite number:
  148.  
  149. on hideAnswerCard me, spr
  150.   set lst = getProp (spriteList, spr)
  151.   
  152.   set spr = integer(spr)
  153.   puppetSprite spr, TRUE
  154.   set the memberNum of sprite spr to getProp (lst, #coverNum)
  155.   set the castLibNum of sprite spr to getProp (lst, #coverLib)
  156.   set the loc of sprite spr to getProp (lst, #loc)
  157.   -- unloadCast (me)
  158.   setAProp (lst, #showFlag, 0)
  159.   setAProp (spriteList, spr, lst)
  160. end
  161.  
  162.  
  163. -- show an answerCard by sprite number.
  164. -- return TRUE if a successful card turning.
  165.  
  166. on showAnswerCard me, spr
  167.   set lst = getAProp (spriteList, spr)
  168.   if voidP (lst) then return 0
  169.   if getProp (lst, #showFlag) then return 0
  170.   
  171.   set the memberNum of sprite spr to getProp (lst, #myNum)
  172.   set the castLibNum of sprite spr to getProp (lst, #myLib)
  173.   
  174.   -- unloadCast (me)
  175.   setAProp (lst, #showFlag, 1)
  176.   setAProp (spriteList, spr, lst)
  177.   return 1
  178. end
  179.  
  180.  
  181. -- check for a match by sprite number.
  182. -- return zero or the matching sprite number.
  183.  
  184. on checkMatch me, spr
  185.   repeat with i = 1 to count (spriteList)
  186.     set spr2 = getPropAt (spriteList, i)
  187.     set lst = getProp (spriteList, spr2)
  188.     
  189.     if spr = getAProp (lst, #matchSprite) then
  190.       if getAProp (lst, #showFlag) then
  191.         return spr2
  192.       end if
  193.     end if
  194.   end repeat
  195.   
  196.   return 0
  197. end
  198.  
  199.  
  200. on checkDone me
  201.   repeat with i = 1 to count (spriteList)
  202.     set spr = getPropAt (spriteList, i)
  203.     set lst = getProp (spriteList, spr)
  204.     if not getAProp (lst, #showFlag) then
  205.       return 0
  206.     end if
  207.   end repeat
  208.   return 1
  209. end
  210.  
  211.  
  212. on getMatchPieceList me
  213.   set lst = []
  214.   set tot = count (spriteList)
  215.   repeat with i = 1 to tot
  216.     add (lst, getPropAt (spriteList, i))
  217.   end repeat
  218.   return lst
  219. end
  220.